#snow-container {
    position: relative;
    width: 100%;
    height: 1000px; /* Ajustar según necesidad */
    overflow: hidden;
    background-color: #0b1d2a; /* Fondo opcional */
}

.snowflake {
    position: absolute;
    top: -10px;
    color: #ffffff;
    font-size: 12px;
    user-select: none;
    pointer-events: none;
    opacity: 0.8;
    z-index: 99;
}


#header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 24px;
    background: linear-gradient(
        to bottom,
        #fcd116 0%,
        #fcd116 50%,
        #003893 50%,
        #003893 75%,
        #ce1126 75%,
        #ce1126 100%
    );
    opacity: 0.9;
    z-index: 5;
    pointer-events: none;
}